home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
include
/
libc.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-10-02
|
969b
|
30 lines
/*
* libc.h --
*
* Declarations for libc functions that don't already have a
* header file assigned to them.
*
* Copyright 1990 Regents of the University of California
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*
* $Header: /sprite/src/lib/include/RCS/libc.h,v 1.3 91/10/02 18:50:03 kupfer Exp $ SPRITE (Berkeley)
*/
#ifndef _LIBC
#define _LIBC
#include <cfuncproto.h>
_EXTERN int Misc_InvokeEditor _ARGS_((char *file));
_EXTERN int alarm _ARGS_ ((unsigned seconds));
_EXTERN int gethostname _ARGS_ ((char *name, int namelen));
_EXTERN int sethostname _ARGS_ ((char *name, int namelen));
#endif /* _LIBC */